#python3
#接口類型:互億無線觸發(fā)短信接口,支持發(fā)送驗證碼短信、訂單通知短信等。
#賬戶注冊:請通過該地址開通賬戶https://user.ihuyi.com/new/register.html
#注意事項:
#(1)調(diào)試期間,請用默認的模板進行測試,默認模板詳見接口文檔;
#(2)請使用 用戶名 及 APIkey來調(diào)用接口,APIkey在會員中心可以獲?。?
#(3)該代碼僅供接入互億無線短信接口參考使用,客戶可根據(jù)實際需要自行編寫;
import urllib.parse
import urllib.request
#接口地址
url = 'http://106.ihuyi.com/webservice/sms.php?method=Submit'
#定義請求的數(shù)據(jù)
values = {
'account':'xxxxxxxx',
'password':'xxxxxxxxxxxx',
'mobile':'134xxxxxxxx',
'content':'您的驗證碼是:7835。請不要把驗證碼泄露給其他人。',
'format':'json',
}
#將數(shù)據(jù)進行編碼
data = urllib.parse.urlencode(values).encode(encoding='UTF8')
#發(fā)起請求
req = urllib.request.Request(url, data)
response = urllib.request.urlopen(req)
res = response.read()
#打印結果
print(res.decode("utf8"))
-----------------------------------
#python2
#接口類型:互億無線觸發(fā)短信接口,支持發(fā)送驗證碼短信、訂單通知短信等。
#賬戶注冊:請通過該地址開通賬戶https://user.ihuyi.com/new/register.html
#注意事項:
#(1)調(diào)試期間,請使用用系統(tǒng)默認的短信內(nèi)容:您的驗證碼是:【變量】。請不要把驗證碼泄露給其他人。
#(2)請使用 APIID 及 APIKEY來調(diào)用接口,可在會員中心獲?。?
#(3)該代碼僅供接入互億無線短信接口參考使用,客戶可根據(jù)實際需要自行編寫;
#!/usr/local/bin/python
#-*- coding:utf-8 -*-
import httplib
import urllib
host = "106.ihuyi.com"
sms_send_uri = "/webservice/sms.php?method=Submit"
#查看用戶名 登錄用戶中心->驗證碼通知短信>產(chǎn)品總覽->API接口信息->APIID
account = "用戶名"
#查看密碼 登錄用戶中心->驗證碼通知短信>產(chǎn)品總覽->API接口信息->APIKEY
password = "密碼"
def send_sms(text, mobile):
params = urllib.urlencode({'account': account, 'password' : password, 'content': text, 'mobile':mobile,'format':'json' })
headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"}
conn = httplib.HTTPConnection(host, port=80, timeout=30)
conn.request("POST", sms_send_uri, params, headers)
response = conn.getresponse()
response_str = response.read()
conn.close()
return response_str
if __name__ == '__main__':
mobile = "138xxxxxxxx"
text = "您的驗證碼是:121254。請不要把驗證碼泄露給其他人。"
print(send_sms(text, mobile))
驗證碼已發(fā)送到您的手機,請查收!
輸入驗證碼后,點擊“開通體驗賬戶”按鈕可立即開通體驗賬戶。